From a509590a11aad73765d8c6bfd3c589486bfd069c Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Tue, 7 Jan 2020 12:12:51 +0000 Subject: [PATCH] x86/boot: boot_vid_mode doesn't need to be global AFAICT, it has never had an external user since its introduction. Signed-off-by: Andrew Cooper Acked-by: Jan Beulich --- xen/arch/x86/boot/trampoline.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/boot/trampoline.S b/xen/arch/x86/boot/trampoline.S index 824f45ec0f..6b403a6d1a 100644 --- a/xen/arch/x86/boot/trampoline.S +++ b/xen/arch/x86/boot/trampoline.S @@ -261,7 +261,7 @@ opt_edid: .byte 0 #ifdef CONFIG_VIDEO -GLOBAL(boot_vid_mode) +boot_vid_mode: .word VIDEO_80x25 /* If we don't run at all, assume basic video mode 3 at 80x25. */ vesa_size: .word 0,0,0 /* width x depth x height */ -- 2.30.2